for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
var $ = window.jQuery;
exports.settings = {
init: function() {
Amarkal.settings.fields.init();
Amarkal
/** global: Amarkal */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
Amarkal.settings.search.init();
Amarkal.settings.sections.init();
// This is called after the onChange/hide/show event listeners are added since some events
// are triggered when the form is instantiated
$('#amarkal-settings-form').amarkalUIForm();
}
};
$(document).ready(function(){
Amarkal.settings.init();
});
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.